home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / intltool-update < prev    next >
Text File  |  2005-10-18  |  27KB  |  1,066 lines

  1. #!/usr/bin/perl -w
  2. # -*- Mode: perl; indent-tabs-mode: nil; c-basic-offset: 4  -*-
  3.  
  4. #
  5. #  The Intltool Message Updater
  6. #
  7. #  Copyright (C) 2000-2003 Free Software Foundation.
  8. #
  9. #  Intltool is free software; you can redistribute it and/or
  10. #  modify it under the terms of the GNU General Public License 
  11. #  version 2 published by the Free Software Foundation.
  12. #
  13. #  Intltool is distributed in the hope that it will be useful,
  14. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. #  General Public License for more details.
  17. #
  18. #  You should have received a copy of the GNU General Public License
  19. #  along with this program; if not, write to the Free Software
  20. #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. #
  22. #  As a special exception to the GNU General Public License, if you
  23. #  distribute this file as part of a program that contains a
  24. #  configuration script generated by Autoconf, you may include it under
  25. #  the same distribution terms that you use for the rest of that program.
  26. #
  27. #  Authors: Kenneth Christiansen <kenneth@gnu.org>
  28. #           Maciej Stachowiak
  29. #           Darin Adler <darin@bentspoon.com>
  30.  
  31. ## Release information
  32. my $PROGRAM = "intltool-update";
  33. my $VERSION = "0.34.1";
  34. my $PACKAGE = "intltool";
  35.  
  36. ## Loaded modules
  37. use strict;
  38. use Getopt::Long;
  39. use Cwd;
  40. use File::Copy;
  41. use File::Find;
  42.  
  43. ## Scalars used by the option stuff
  44. my $HELP_ARG        = 0;
  45. my $VERSION_ARG    = 0;
  46. my $DIST_ARG       = 0;
  47. my $POT_ARG       = 0;
  48. my $HEADERS_ARG    = 0;
  49. my $MAINTAIN_ARG   = 0;
  50. my $REPORT_ARG     = 0;
  51. my $VERBOSE       = 0;
  52. my $GETTEXT_PACKAGE = "";
  53. my $OUTPUT_FILE    = "";
  54.  
  55. my @languages;
  56. my %varhash = ();
  57. my %po_files_by_lang = ();
  58.  
  59. # Regular expressions to categorize file types.
  60. # FIXME: Please check if the following is correct
  61.  
  62. my $xml_support =
  63. "xml(?:\\.in)*|".    # http://www.w3.org/XML/ (Note: .in is not required)
  64. "ui|".            # Bonobo specific - User Interface desc. files
  65. "lang|".        # ?
  66. "glade2?(?:\\.in)*|".    # Glade specific - User Interface desc. files (Note: .in is not required)
  67. "scm(?:\\.in)*|".    # ? (Note: .in is not required)
  68. "oaf(?:\\.in)+|".    # DEPRECATED: Replaces by Bonobo .server files 
  69. "etspec|".        # ?
  70. "server(?:\\.in)+|".    # Bonobo specific
  71. "sheet(?:\\.in)+|".    # ?
  72. "schemas(?:\\.in)+|".    # GConf specific
  73. "pong(?:\\.in)+|".    # DEPRECATED: PONG is not used [by GNOME] any longer.
  74. "kbd(?:\\.in)+";    # GOK specific. 
  75.  
  76. my $ini_support =
  77. "icon(?:\\.in)+|".    # http://www.freedesktop.org/Standards/icon-theme-spec
  78. "desktop(?:\\.in)+|".    # http://www.freedesktop.org/Standards/menu-spec
  79. "caves(?:\\.in)+|".    # GNOME Games specific
  80. "directory(?:\\.in)+|".    # http://www.freedesktop.org/Standards/menu-spec
  81. "soundlist(?:\\.in)+|".    # GNOME specific
  82. "keys(?:\\.in)+|".    # GNOME Mime database specific
  83. "theme(?:\\.in)+";    # http://www.freedesktop.org/Standards/icon-theme-spec
  84.  
  85. my $buildin_gettext_support = 
  86. "c|y|cs|cc|cpp|c\\+\\+|h|hh|gob|py";
  87.  
  88. ## Always flush buffer when printing
  89. $| = 1;
  90.  
  91. ## Sometimes the source tree will be rooted somewhere else.
  92. my $SRCDIR = ".";
  93. my $POTFILES_in;
  94.  
  95. $SRCDIR = $ENV{"srcdir"} if $ENV{"srcdir"};
  96. $POTFILES_in = "<$SRCDIR/POTFILES.in";
  97.  
  98. my $devnull = ($^O eq 'MSWin32' ? 'NUL:' : '/dev/null');
  99.  
  100. ## Handle options
  101. GetOptions 
  102. (
  103.  "help"            => \$HELP_ARG,
  104.  "version"            => \$VERSION_ARG,
  105.  "dist|d"           => \$DIST_ARG,
  106.  "pot|p"           => \$POT_ARG,
  107.  "headers|s"           => \$HEADERS_ARG,
  108.  "maintain|m"           => \$MAINTAIN_ARG,
  109.  "report|r"           => \$REPORT_ARG,
  110.  "verbose|x"           => \$VERBOSE,
  111.  "gettext-package|g=s" => \$GETTEXT_PACKAGE,
  112.  "output-file|o=s"     => \$OUTPUT_FILE,
  113.  ) or &Console_WriteError_InvalidOption;
  114.  
  115. &Console_Write_IntltoolHelp if $HELP_ARG;
  116. &Console_Write_IntltoolVersion if $VERSION_ARG;
  117.  
  118. my $arg_count = ($DIST_ARG > 0)
  119.     + ($POT_ARG > 0)
  120.     + ($HEADERS_ARG > 0)
  121.     + ($MAINTAIN_ARG > 0)
  122.     + ($REPORT_ARG > 0);
  123.  
  124. &Console_Write_IntltoolHelp if $arg_count > 1;
  125.  
  126. # --version and --help don't require a module name
  127. my $MODULE = $GETTEXT_PACKAGE || &FindPackageName;
  128.  
  129. if ($POT_ARG)
  130. {
  131.     &GenerateHeaders;
  132.     &GeneratePOTemplate;
  133. }
  134. elsif ($HEADERS_ARG)
  135. {
  136.     &GenerateHeaders;
  137. }
  138. elsif ($MAINTAIN_ARG)
  139. {
  140.     &FindLeftoutFiles;
  141. }
  142. elsif ($REPORT_ARG)
  143. {
  144.     &GenerateHeaders;
  145.     &GeneratePOTemplate;
  146.     &Console_Write_CoverageReport;
  147. }
  148. elsif ((defined $ARGV[0]) && $ARGV[0] =~ /^[a-z]/)
  149. {
  150.     my $lang = $ARGV[0];
  151.  
  152.     ## Report error if the language file supplied
  153.     ## to the command line is non-existent
  154.     &Console_WriteError_NotExisting("$SRCDIR/$lang.po")
  155.         if ! -s "$SRCDIR/$lang.po";
  156.  
  157.     if (!$DIST_ARG)
  158.     {
  159.     print "Working, please wait..." if $VERBOSE;
  160.     &GenerateHeaders;
  161.     &GeneratePOTemplate;
  162.     }
  163.     &POFile_Update ($lang, $OUTPUT_FILE);
  164.     &Console_Write_TranslationStatus ($lang, $OUTPUT_FILE);
  165. else 
  166. {
  167.     &Console_Write_IntltoolHelp;
  168. }
  169.  
  170. exit;
  171.  
  172. #########
  173.  
  174. sub Console_Write_IntltoolVersion
  175. {
  176.     print <<_EOF_;
  177. ${PROGRAM} (${PACKAGE}) $VERSION
  178. Written by Kenneth Christiansen, Maciej Stachowiak, and Darin Adler.
  179.  
  180. Copyright (C) 2000-2003 Free Software Foundation, Inc.
  181. This is free software; see the source for copying conditions.  There is NO
  182. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  183. _EOF_
  184.     exit;
  185. }
  186.  
  187. sub Console_Write_IntltoolHelp
  188. {
  189.     print <<_EOF_;
  190. Usage: ${PROGRAM} [OPTION]... LANGCODE
  191. Updates PO template files and merge them with the translations.
  192.  
  193. Mode of operation (only one is allowed):
  194.   -p, --pot                   generate the PO template only
  195.   -s, --headers               generate the header files in POTFILES.in
  196.   -m, --maintain              search for left out files from POTFILES.in
  197.   -r, --report                display a status report for the module
  198.   -d, --dist                  merge LANGCODE.po with existing PO template
  199.  
  200. Extra options:
  201.   -g, --gettext-package=NAME  override PO template name, useful with --pot
  202.   -o, --output-file=FILE      write merged translation to FILE
  203.   -x, --verbose               display lots of feedback
  204.       --help                  display this help and exit
  205.       --version               output version information and exit
  206.  
  207. Examples of use:
  208. ${PROGRAM} --pot    just create a new PO template
  209. ${PROGRAM} xy       create new PO template and merge xy.po with it
  210.  
  211. Report bugs to http://bugzilla.gnome.org/ (product name "$PACKAGE")
  212. or send email to <xml-i18n-tools\@gnome.org>.
  213. _EOF_
  214.     exit;
  215. }
  216.  
  217. sub echo_n
  218. {
  219.     my $str = shift;
  220.     my $ret = `echo "$str"`;
  221.  
  222.     $ret =~ s/\n$//; # do we need the "s" flag?
  223.  
  224.     return $ret;
  225. }
  226.  
  227. sub POFile_DetermineType ($) 
  228. {
  229.    my $type = $_;
  230.    my $gettext_type;
  231.  
  232.    my $xml_regex     = "(?:" . $xml_support . ")";
  233.    my $ini_regex     = "(?:" . $ini_support . ")";
  234.    my $buildin_regex = "(?:" . $buildin_gettext_support . ")";
  235.  
  236.    if ($type =~ /\[type: gettext\/([^\]].*)]/) 
  237.    {
  238.     $gettext_type=$1;
  239.    }
  240.    elsif ($type =~ /schemas(\.in)+$/) 
  241.    {
  242.     $gettext_type="schemas";
  243.    }
  244.    elsif ($type =~ /glade2?(\.in)*$/) 
  245.    {
  246.        $gettext_type="glade";
  247.    }
  248.    elsif ($type =~ /scm(\.in)*$/) 
  249.    {
  250.        $gettext_type="scheme";
  251.    }
  252.    elsif ($type =~ /keys(\.in)+$/) 
  253.    {
  254.        $gettext_type="keys";
  255.    }
  256.  
  257.    # bucket types
  258.  
  259.    elsif ($type =~ /$xml_regex$/) 
  260.    {
  261.        $gettext_type="xml";
  262.    }
  263.    elsif ($type =~ /$ini_regex$/) 
  264.    { 
  265.        $gettext_type="ini";
  266.    }
  267.    elsif ($type =~ /$buildin_regex$/) 
  268.    {
  269.        $gettext_type="buildin";
  270.    }
  271.    else
  272.    { 
  273.        $gettext_type="unknown"; 
  274.    }
  275.  
  276.    return "gettext\/$gettext_type";
  277. }
  278.  
  279. sub TextFile_DetermineEncoding ($) 
  280. {
  281.     my $gettext_code="ASCII"; # All files are ASCII by default
  282.     my $filetype=`file $_ | cut -d ' ' -f 2`;
  283.  
  284.     if ($? eq "0")
  285.     {
  286.     if ($filetype =~ /^(ISO|UTF)/)
  287.     {
  288.         chomp ($gettext_code = $filetype);
  289.     }
  290.     elsif ($filetype =~ /^XML/)
  291.     {
  292.         $gettext_code="UTF-8"; # We asume that .glade and other .xml files are UTF-8
  293.     }
  294.     }
  295.  
  296.     return $gettext_code;
  297. }
  298.  
  299. sub isNotValidMissing
  300. {
  301.     my ($file) = @_;
  302.  
  303.     return if $file =~ /^\{arch\}\/.*$/;
  304.     return if $file =~ /^$varhash{"PACKAGE"}-$varhash{"VERSION"}\/.*$/;
  305. }
  306.  
  307. sub FindLeftoutFiles
  308. {
  309.     my (@buf_i18n_plain,
  310.     @buf_i18n_xml,
  311.     @buf_i18n_xml_unmarked,
  312.     @buf_i18n_ini,
  313.     @buf_potfiles,
  314.     @buf_potfiles_ignore,
  315.     @buf_allfiles,
  316.     @buf_allfiles_sorted,
  317.     @buf_potfiles_sorted
  318.     );
  319.  
  320.     ## Search and find all translatable files
  321.     find sub { 
  322.     push @buf_i18n_plain,        "$File::Find::name" if /\.($buildin_gettext_support)$/;
  323.     push @buf_i18n_xml,          "$File::Find::name" if /\.($xml_support)$/;
  324.     push @buf_i18n_ini,          "$File::Find::name" if /\.($ini_support)$/;
  325.     push @buf_i18n_xml_unmarked, "$File::Find::name" if /\.(schemas(\.in)+)$/;
  326.     }, "..";
  327.  
  328.  
  329.     open POTFILES, $POTFILES_in or die "$PROGRAM:  there's no POTFILES.in!\n";
  330.     @buf_potfiles = grep !/^(#|\s*$)/, <POTFILES>;
  331.     close POTFILES;
  332.  
  333.     foreach (@buf_potfiles) {
  334.     s/^\[.*]\s*//;
  335.     }
  336.  
  337.     print "Searching for missing translatable files...\n" if $VERBOSE;
  338.  
  339.     ## Check if we should ignore some found files, when
  340.     ## comparing with POTFILES.in
  341.     foreach my $ignore ("POTFILES.skip", "POTFILES.ignore")
  342.     {
  343.     (-s $ignore) or next;
  344.  
  345.     if ("$ignore" eq "POTFILES.ignore")
  346.     {
  347.         print "The usage of POTFILES.ignore is deprecated. Please consider moving the\n".
  348.           "content of this file to POTFILES.skip.\n";
  349.     }
  350.  
  351.     print "Found $ignore: Ignoring files...\n" if $VERBOSE;
  352.     open FILE, "<$ignore" or die "ERROR: Failed to open $ignore!\n";
  353.         
  354.     while (<FILE>)
  355.     {
  356.         push @buf_potfiles_ignore, $_ unless /^(#|\s*$)/;
  357.     }
  358.     close FILE;
  359.  
  360.     @buf_potfiles = (@buf_potfiles_ignore, @buf_potfiles);
  361.     }
  362.  
  363.     foreach my $file (@buf_i18n_plain)
  364.     {
  365.     my $in_comment = 0;
  366.     my $in_macro = 0;
  367.  
  368.     open FILE, "<$file";
  369.     while (<FILE>)
  370.     {
  371.         # Handle continued multi-line comment.
  372.         if ($in_comment)
  373.         {
  374.         next unless s-.*\*/--;
  375.         $in_comment = 0;
  376.         }
  377.  
  378.         # Handle continued macro.
  379.         if ($in_macro)
  380.         {
  381.         $in_macro = 0 unless /\\$/;
  382.         next;
  383.         }
  384.  
  385.         # Handle start of macro (or any preprocessor directive).
  386.         if (/^\s*\#/)
  387.         {
  388.         $in_macro = 1 if /^([^\\]|\\.)*\\$/;
  389.         next;
  390.         }
  391.  
  392.         # Handle comments and quoted text.
  393.         while (m-(/\*|//|\'|\")-) # \' and \" keep emacs perl mode happy
  394.         {
  395.         my $match = $1;
  396.         if ($match eq "/*")
  397.         {
  398.             if (!s-/\*.*?\*/--)
  399.             {
  400.             s-/\*.*--;
  401.             $in_comment = 1;
  402.             }
  403.         }
  404.         elsif ($match eq "//")
  405.         {
  406.             s-//.*--;
  407.         }
  408.         else # ' or "
  409.         {
  410.             if (!s-$match([^\\]|\\.)*?$match-QUOTEDTEXT-)
  411.             {
  412.             warn "mismatched quotes at line $. in $file\n";
  413.             s-$match.*--;
  414.             }
  415.         }
  416.         }        
  417.  
  418.         if (/\.GetString ?\(QUOTEDTEXT/)
  419.         {
  420.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  421.                     ## Remove the first 3 chars and add newline
  422.                     push @buf_allfiles, unpack("x3 A*", $file) . "\n";
  423.                 }
  424.         last;
  425.         }
  426.  
  427.         if (/_\(QUOTEDTEXT/)
  428.         {
  429.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  430.                     ## Remove the first 3 chars and add newline
  431.                     push @buf_allfiles, unpack("x3 A*", $file) . "\n";
  432.                 }
  433.         last;
  434.         }
  435.     }
  436.     close FILE;
  437.     }
  438.  
  439.     foreach my $file (@buf_i18n_xml) 
  440.     {
  441.     open FILE, "<$file";
  442.     
  443.     while (<FILE>) 
  444.     {
  445.         # FIXME: share the pattern matching code with intltool-extract
  446.         if (/\s_[-A-Za-z0-9._:]+\s*=\s*\"([^"]+)\"/ || /<_[^>]+>/ || /translatable=\"yes\"/)
  447.         {
  448.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  449.                     push @buf_allfiles, unpack("x3 A*", $file) . "\n";
  450.                 }
  451.         last;
  452.         }
  453.     }
  454.     close FILE;
  455.     }
  456.  
  457.     foreach my $file (@buf_i18n_ini)
  458.     {
  459.     open FILE, "<$file";
  460.     while (<FILE>) 
  461.     {
  462.         if (/_(.*)=/)
  463.         {
  464.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  465.                     push @buf_allfiles, unpack("x3 A*", $file) . "\n";
  466.                 }
  467.         last;
  468.         }
  469.     }
  470.     close FILE;
  471.     }
  472.  
  473.     foreach my $file (@buf_i18n_xml_unmarked)
  474.     {
  475.         if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  476.             push @buf_allfiles, unpack("x3 A*", $file) . "\n";
  477.         }
  478.     }
  479.  
  480.  
  481.     @buf_allfiles_sorted = sort (@buf_allfiles);
  482.     @buf_potfiles_sorted = sort (@buf_potfiles);
  483.  
  484.     my %in2;
  485.     foreach (@buf_potfiles_sorted) 
  486.     {
  487.     $in2{$_} = 1;
  488.     }
  489.  
  490.     my @result;
  491.  
  492.     foreach (@buf_allfiles_sorted)
  493.     {
  494.     if (!exists($in2{$_}))
  495.     {
  496.         push @result, $_
  497.     }
  498.     }
  499.  
  500.     my @buf_potfiles_notexist;
  501.  
  502.     foreach (@buf_potfiles_sorted)
  503.     {
  504.     chomp (my $dummy = $_);
  505.     if ("$dummy" ne "" and ! -f "../$dummy")
  506.     {
  507.         push @buf_potfiles_notexist, $_;
  508.     }
  509.     }
  510.  
  511.     ## Save file with information about the files missing
  512.     ## if any, and give information about this procedure.
  513.     if (@result + @buf_potfiles_notexist > 0)
  514.     {
  515.     if (@result) 
  516.     {
  517.         print "\n" if $VERBOSE;
  518.         unlink "missing";
  519.         open OUT, ">missing";
  520.         print OUT @result;
  521.         close OUT;
  522.         warn "\e[1mThe following files contain translations and are currently not in use. Please\e[0m\n".
  523.              "\e[1mconsider adding these to the POTFILES.in file, located in the po/ directory.\e[0m\n\n";
  524.         print STDERR @result, "\n";
  525.         warn "If some of these files are left out on purpose then please add them to\n".
  526.          "POTFILES.skip instead of POTFILES.in. A file \e[1m'missing'\e[0m containing this list\n".
  527.          "of left out files has been written in the current directory.\n";
  528.     }
  529.     if (@buf_potfiles_notexist)
  530.     {
  531.         unlink "notexist";
  532.         open OUT, ">notexist";
  533.         print OUT @buf_potfiles_notexist;
  534.         close OUT;
  535.         warn "\n" if ($VERBOSE or @result);
  536.         warn "\e[1mThe following files do not exist anymore:\e[0m\n\n";
  537.         warn @buf_potfiles_notexist, "\n";
  538.         warn "Please remove them from POTFILES.in or POTFILES.skip. A file \e[1m'notexist'\e[0m\n".
  539.          "containing this list of absent files has been written in the current directory.\n";
  540.     }
  541.     }
  542.  
  543.     ## If there is nothing to complain about, notify the user
  544.     else {
  545.     print "\nAll files containing translations are present in POTFILES.in.\n" if $VERBOSE;
  546.     }
  547. }
  548.  
  549. sub Console_WriteError_InvalidOption
  550. {
  551.     ## Handle invalid arguments
  552.     print STDERR "Try `${PROGRAM} --help' for more information.\n";
  553.     exit 1;
  554. }
  555.  
  556. sub GenerateHeaders
  557. {
  558.     my $EXTRACT = "/usr/bin/intltool-extract";
  559.     chomp $EXTRACT;
  560.  
  561.     $EXTRACT = $ENV{"INTLTOOL_EXTRACT"} if $ENV{"INTLTOOL_EXTRACT"};
  562.  
  563.     ## Generate the .h header files, so we can allow glade and
  564.     ## xml translation support
  565.     if (! -x "$EXTRACT")
  566.     {
  567.     print STDERR "\n *** The intltool-extract script wasn't found!"
  568.          ."\n *** Without it, intltool-update can not generate files.\n";
  569.     exit;
  570.     }
  571.     else
  572.     {
  573.     open (FILE, $POTFILES_in) or die "$PROGRAM: POTFILES.in not found.\n";
  574.     
  575.     while (<FILE>) 
  576.     {
  577.        chomp;
  578.        next if /^\[\s*encoding/;
  579.  
  580.        ## Find xml files in POTFILES.in and generate the
  581.        ## files with help from the extract script
  582.  
  583.        my $gettext_type= &POFile_DetermineType ($1);
  584.  
  585.        if (/\.($xml_support|$ini_support)$/ || /^\[/)
  586.        {
  587.            s/^\[[^\[].*]\s*//;
  588.  
  589.            my $filename = "../$_";
  590.  
  591.            if ($VERBOSE)
  592.            {
  593.            system ($EXTRACT, "--update", "--srcdir=$SRCDIR",
  594.                "--type=$gettext_type", $filename);
  595.            } 
  596.            else 
  597.            {
  598.             system ($EXTRACT, "--update", "--type=$gettext_type", 
  599.                "--srcdir=$SRCDIR", "--quiet", $filename);
  600.            }
  601.        }
  602.        }
  603.        close FILE;
  604.    }
  605. }
  606.  
  607. #
  608. # Generate .pot file from POTFILES.in
  609. #
  610. sub GeneratePOTemplate
  611. {
  612.     my $XGETTEXT = $ENV{"XGETTEXT"} || "/usr/bin/xgettext";
  613.     my $XGETTEXT_ARGS = $ENV{"XGETTEXT_ARGS"} || '';
  614.     chomp $XGETTEXT;
  615.  
  616.     if (! -x $XGETTEXT)
  617.     {
  618.     print STDERR " *** xgettext is not found on this system!\n".
  619.              " *** Without it, intltool-update can not extract strings.\n";
  620.     exit;
  621.     }
  622.  
  623.     print "Building $MODULE.pot...\n" if $VERBOSE;
  624.  
  625.     open INFILE, $POTFILES_in;
  626.     unlink "POTFILES.in.temp";
  627.     open OUTFILE, ">POTFILES.in.temp" or die("Cannot open POTFILES.in.temp for writing");
  628.  
  629.     my $gettext_support_nonascii = 0;
  630.  
  631.     # checks for GNU gettext >= 0.12
  632.     my $dummy = `$XGETTEXT --version --from-code=UTF-8 >$devnull 2>$devnull`;
  633.     if ($? == 0)
  634.     {
  635.     $gettext_support_nonascii = 1;
  636.     }
  637.     else
  638.     {
  639.     # urge everybody to upgrade gettext
  640.     print STDERR "WARNING: This version of gettext does not support extracting non-ASCII\n".
  641.              "         strings. That means you should install a version of gettext\n".
  642.              "         that supports non-ASCII strings (such as GNU gettext >= 0.12),\n".
  643.              "         or have to let non-ASCII strings untranslated. (If there is any)\n";
  644.     }
  645.  
  646.     my $encoding = "ASCII";
  647.     my $forced_gettext_code;
  648.     my @temp_headers;
  649.     my $encoding_problem_is_reported = 0;
  650.  
  651.     while (<INFILE>) 
  652.     {
  653.     next if (/^#/ or /^\s*$/);
  654.  
  655.     chomp;
  656.  
  657.     my $gettext_code;
  658.  
  659.     if (/^\[\s*encoding:\s*(.*)\s*\]/)
  660.     {
  661.         $forced_gettext_code=$1;
  662.     }
  663.     elsif (/\.($xml_support|$ini_support)$/ || /^\[/)
  664.     {
  665.         s/^\[.*]\s*//;
  666.             print OUTFILE "../$_.h\n";
  667.         push @temp_headers, "../$_.h";
  668.         $gettext_code = &TextFile_DetermineEncoding ("../$_.h") if ($gettext_support_nonascii and not defined $forced_gettext_code);
  669.     } 
  670.     else 
  671.     {
  672.         if ($SRCDIR eq ".") {
  673.             print OUTFILE "../$_\n";
  674.         } else {
  675.             print OUTFILE "$SRCDIR/../$_\n";
  676.         }
  677.         $gettext_code = &TextFile_DetermineEncoding ("../$_") if ($gettext_support_nonascii and not defined $forced_gettext_code);
  678.     }
  679.  
  680.     next if (! $gettext_support_nonascii);
  681.  
  682.     if (defined $forced_gettext_code)
  683.     {
  684.         $encoding=$forced_gettext_code;
  685.     }
  686.     elsif (defined $gettext_code and "$encoding" ne "$gettext_code")
  687.     {
  688.         if ($encoding eq "ASCII")
  689.         {
  690.         $encoding=$gettext_code;
  691.         }
  692.         elsif ($gettext_code ne "ASCII")
  693.         {
  694.         # Only report once because the message is quite long
  695.         if (! $encoding_problem_is_reported)
  696.         {
  697.             print STDERR "WARNING: You should use the same file encoding for all your project files,\n".
  698.                  "         but $PROGRAM thinks that most of the source files are in\n".
  699.                  "         $encoding encoding, while \"$_\" is (likely) in\n".
  700.                         "         $gettext_code encoding. If you are sure that all translatable strings\n".
  701.                  "         are in same encoding (say UTF-8), please \e[1m*prepend*\e[0m the following\n".
  702.                  "         line to POTFILES.in:\n\n".
  703.                  "                 [encoding: UTF-8]\n\n".
  704.                  "         and make sure that configure.in/ac checks for $PACKAGE >= 0.27 .\n".
  705.                  "(such warning message will only be reported once.)\n";
  706.             $encoding_problem_is_reported = 1;
  707.         }
  708.         }
  709.     }
  710.     }
  711.  
  712.     close OUTFILE;
  713.     close INFILE;
  714.  
  715.     unlink "$MODULE.pot";
  716.     my @xgettext_argument=("$XGETTEXT",
  717.                "--add-comments",
  718.                "--directory\=\.",
  719.                "--output\=$MODULE\.pot",
  720.                "--files-from\=\.\/POTFILES\.in\.temp");
  721.     my $XGETTEXT_KEYWORDS = &FindPOTKeywords;
  722.     push @xgettext_argument, $XGETTEXT_KEYWORDS;
  723.     push @xgettext_argument, "--from-code\=$encoding" if ($gettext_support_nonascii);
  724.     push @xgettext_argument, $XGETTEXT_ARGS if $XGETTEXT_ARGS;
  725.     my $xgettext_command = join ' ', @xgettext_argument;
  726.  
  727.     # intercept xgettext error message
  728.     print "Running $xgettext_command\n" if $VERBOSE;
  729.     my $xgettext_error_msg = `$xgettext_command 2>\&1`;
  730.     my $command_failed = $?;
  731.  
  732.     unlink "POTFILES.in.temp";
  733.  
  734.     print "Removing generated header (.h) files..." if $VERBOSE;
  735.     unlink foreach (@temp_headers);
  736.     print "done.\n" if $VERBOSE;
  737.  
  738.     if (! $command_failed)
  739.     {
  740.     if (! -e "$MODULE.pot")
  741.     {
  742.         print "None of the files in POTFILES.in contain strings marked for translation.\n" if $VERBOSE;
  743.     }
  744.     else
  745.     {
  746.         print "Wrote $MODULE.pot\n" if $VERBOSE;
  747.     }
  748.     }
  749.     else
  750.     {
  751.     if ($xgettext_error_msg =~ /--from-code/)
  752.     {
  753.         # replace non-ASCII error message with a more useful one.
  754.         print STDERR "ERROR: xgettext failed to generate PO template file because there is non-ASCII\n".
  755.              "       string marked for translation. Please make sure that all strings marked\n".
  756.              "       for translation are in uniform encoding (say UTF-8), then \e[1m*prepend*\e[0m the\n".
  757.              "       following line to POTFILES.in and rerun $PROGRAM:\n\n".
  758.              "           [encoding: UTF-8]\n\n";
  759.     }
  760.     else
  761.     {
  762.         print STDERR "$xgettext_error_msg";
  763.         if (-e "$MODULE.pot")
  764.         {
  765.         # is this possible?
  766.         print STDERR "ERROR: xgettext failed but still managed to generate PO template file.\n".
  767.                  "       Please consult error message above if there is any.\n";
  768.         }
  769.         else
  770.         {
  771.         print STDERR "ERROR: xgettext failed to generate PO template file. Please consult\n".
  772.                  "       error message above if there is any.\n";
  773.         }
  774.     }
  775.     exit (1);
  776.     }
  777. }
  778.  
  779. sub POFile_Update
  780. {
  781.     -f "$MODULE.pot" or die "$PROGRAM: $MODULE.pot does not exist.\n";
  782.  
  783.     my $MSGMERGE = $ENV{"MSGMERGE"} || "/usr/bin/msgmerge";
  784.     my ($lang, $outfile) = @_;
  785.  
  786.     print "Merging $SRCDIR/$lang.po with $MODULE.pot..." if $VERBOSE;
  787.  
  788.     my $infile = "$SRCDIR/$lang.po";
  789.     $outfile = "$SRCDIR/$lang.po" if ($outfile eq "");
  790.  
  791.     # I think msgmerge won't overwrite old file if merge is not successful
  792.     system ("$MSGMERGE", "-o", $outfile, $infile, "$MODULE.pot");
  793. }
  794.  
  795. sub Console_WriteError_NotExisting
  796. {
  797.     my ($file) = @_;
  798.  
  799.     ## Report error if supplied language file is non-existing
  800.     print STDERR "$PROGRAM: $file does not exist!\n";
  801.     print STDERR "Try '$PROGRAM --help' for more information.\n";
  802.     exit;
  803. }
  804.  
  805. sub GatherPOFiles
  806. {
  807.     my @po_files = glob ("./*.po");
  808.  
  809.     @languages = map (&POFile_GetLanguage, @po_files);
  810.  
  811.     foreach my $lang (@languages) 
  812.     {
  813.     $po_files_by_lang{$lang} = shift (@po_files);
  814.     }
  815. }
  816.  
  817. sub POFile_GetLanguage ($)
  818. {
  819.     s/^(.*\/)?(.+)\.po$/$2/;
  820.     return $_;
  821. }
  822.  
  823. sub Console_Write_TranslationStatus
  824. {
  825.     my ($lang, $output_file) = @_;
  826.     my $MSGFMT = $ENV{"MSGFMT"} || "/usr/bin/msgfmt";
  827.  
  828.     $output_file = "$SRCDIR/$lang.po" if ($output_file eq "");
  829.  
  830.     system ("$MSGFMT", "-o", "$devnull", "--verbose", $output_file);
  831. }
  832.  
  833. sub Console_Write_CoverageReport
  834. {
  835.     my $MSGFMT = $ENV{"MSGFMT"} || "/usr/bin/msgfmt";
  836.  
  837.     &GatherPOFiles;
  838.  
  839.     foreach my $lang (@languages) 
  840.     {
  841.     print "$lang: ";
  842.     &POFile_Update ($lang, "");
  843.     }
  844.  
  845.     print "\n\n * Current translation support in $MODULE \n\n";
  846.  
  847.     foreach my $lang (@languages)
  848.     {
  849.     print "$lang: ";
  850.     system ("$MSGFMT", "-o", "$devnull", "--verbose", "$SRCDIR/$lang.po");
  851.     }
  852. }
  853.  
  854. sub SubstituteVariable
  855. {
  856.     my ($str) = @_;
  857.     
  858.     # always need to rewind file whenever it has been accessed
  859.     seek (CONF, 0, 0);
  860.  
  861.     # cache each variable. varhash is global to we can add
  862.     # variables elsewhere.
  863.     while (<CONF>)
  864.     {
  865.     if (/^(\w+)=(.*)$/)
  866.     {
  867.         ($varhash{$1} = $2) =~  s/^["'](.*)["']$/$1/;
  868.     }
  869.     }
  870.     
  871.     if ($str =~ /^(.*)\${?([A-Z_]+)}?(.*)$/)
  872.     {
  873.     my $rest = $3;
  874.     my $untouched = $1;
  875.     my $sub = $varhash{$2};
  876.     
  877.     return SubstituteVariable ("$untouched$sub$rest");
  878.     }
  879.     
  880.     # We're using Perl backticks ` and "echo -n" here in order to 
  881.     # expand any shell escapes (such as backticks themselves) in every variable
  882.     return echo_n ($str);
  883. }
  884.  
  885. sub CONF_Handle_Open
  886. {
  887.     my $base_dirname = getcwd();
  888.     $base_dirname =~ s@.*/@@;
  889.  
  890.     my ($conf_in, $src_dir);
  891.  
  892.     if ($base_dirname =~ /^po(-.+)?$/) 
  893.     {
  894.     if (-f "Makevars") 
  895.     {
  896.         my $makefile_source;
  897.  
  898.         local (*IN);
  899.         open (IN, "<Makevars") || die "can't open Makevars: $!";
  900.  
  901.         while (<IN>) 
  902.         {
  903.         if (/^top_builddir[ \t]*=/) 
  904.         {
  905.             $src_dir = $_;
  906.             $src_dir =~ s/^top_builddir[ \t]*=[ \t]*([^ \t\n\r]*)/$1/;
  907.  
  908.             chomp $src_dir;
  909.                     if (-f "$src_dir" . "/configure.ac") {
  910.                         $conf_in = "$src_dir" . "/configure.ac" . "\n";
  911.                     } else {
  912.                         $conf_in = "$src_dir" . "/configure.in" . "\n";
  913.                     }
  914.             last;
  915.         }
  916.         }
  917.         close IN;
  918.  
  919.         $conf_in || die "Cannot find top_builddir in Makevars.";
  920.     }
  921.     elsif (-f "../configure.ac") 
  922.     {
  923.         $conf_in = "../configure.ac";
  924.     } 
  925.     elsif (-f "../configure.in") 
  926.     {
  927.         $conf_in = "../configure.in";
  928.     } 
  929.     else 
  930.     {
  931.         my $makefile_source;
  932.  
  933.         local (*IN);
  934.         open (IN, "<Makefile") || return;
  935.  
  936.         while (<IN>) 
  937.         {
  938.         if (/^top_srcdir[ \t]*=/) 
  939.         {
  940.             $src_dir = $_;            
  941.             $src_dir =~ s/^top_srcdir[ \t]*=[ \t]*([^ \t\n\r]*)/$1/;
  942.  
  943.             chomp $src_dir;
  944.             $conf_in = "$src_dir" . "/configure.in" . "\n";
  945.  
  946.             last;
  947.         }
  948.         }
  949.         close IN;
  950.  
  951.         $conf_in || die "Cannot find top_srcdir in Makefile.";
  952.     }
  953.  
  954.     open (CONF, "<$conf_in");
  955.     }
  956.     else
  957.     {
  958.     print STDERR "$PROGRAM: Unable to proceed.\n" .
  959.              "Make sure to run this script inside the po directory.\n";
  960.     exit;
  961.     }
  962. }
  963.  
  964. sub FindPackageName
  965. {
  966.     my $version;
  967.     my $domain = &FindMakevarsDomain;
  968.     my $name = $domain || "untitled";
  969.  
  970.     &CONF_Handle_Open;
  971.  
  972.     my $conf_source; {
  973.     local (*IN);
  974.     open (IN, "<&CONF") || return $name;
  975.     seek (IN, 0, 0);
  976.     local $/; # slurp mode
  977.     $conf_source = <IN>;
  978.     close IN;
  979.     }
  980.  
  981.     # priority for getting package name:
  982.     # 1. GETTEXT_PACKAGE
  983.     # 2. first argument of AC_INIT (with >= 2 arguments)
  984.     # 3. first argument of AM_INIT_AUTOMAKE (with >= 2 argument)
  985.  
  986.     # /^AM_INIT_AUTOMAKE\([\s\[]*([^,\)\s\]]+)/m 
  987.     # the \s makes this not work, why?
  988.     if ($conf_source =~ /^AM_INIT_AUTOMAKE\(([^,\)]+),([^,\)]+)/m)
  989.     {
  990.     ($name, $version) = ($1, $2);
  991.     $name    =~ s/[\[\]\s]//g;
  992.     $version =~ s/[\[\]\s]//g;
  993.     $varhash{"AC_PACKAGE_NAME"} = $name;
  994.     $varhash{"PACKAGE"} = $name;
  995.     $varhash{"AC_PACKAGE_VERSION"} = $version;
  996.     $varhash{"VERSION"} = $version;
  997.     }
  998.     
  999.     if ($conf_source =~ /^AC_INIT\(([^,\)]+),([^,\)]+)/m) 
  1000.     {
  1001.     ($name, $version) = ($1, $2);
  1002.     $name    =~ s/[\[\]\s]//g;
  1003.     $version =~ s/[\[\]\s]//g;
  1004.     $varhash{"AC_PACKAGE_NAME"} = $name;
  1005.     $varhash{"PACKAGE"} = $name;
  1006.     $varhash{"AC_PACKAGE_VERSION"} = $version;
  1007.     $varhash{"VERSION"} = $version;
  1008.     }
  1009.  
  1010.     # \s makes this not work, why?
  1011.     $name = $1 if $conf_source =~ /^GETTEXT_PACKAGE=\[?([^\n\]]+)/m;
  1012.     
  1013.     # prepend '$' to auto* internal variables, usually they are
  1014.     # used in configure.in/ac without the '$'
  1015.     $name =~ s/AC_/\$AC_/g;
  1016.     $name =~ s/\$\$/\$/g;
  1017.  
  1018.     $name = $domain if $domain;
  1019.  
  1020.     $name = SubstituteVariable ($name);
  1021.     $name =~ s/^["'](.*)["']$/$1/;
  1022.  
  1023.     return $name if $name;
  1024. }
  1025.  
  1026.  
  1027. sub FindPOTKeywords
  1028. {
  1029.  
  1030.     my $keywords = "--keyword\=\_ --keyword\=N\_ --keyword\=U\_ --keyword\=Q\_";
  1031.     my $varname = "XGETTEXT_OPTIONS";
  1032.     my $make_source; {
  1033.     local (*IN);
  1034.     open (IN, "<Makevars") || (open(IN, "<Makefile.in.in") && ($varname = "XGETTEXT_KEYWORDS")) || return $keywords;
  1035.     seek (IN, 0, 0);
  1036.     local $/; # slurp mode
  1037.     $make_source = <IN>;
  1038.     close IN;
  1039.     }
  1040.  
  1041.     $keywords = $1 if $make_source =~ /^$varname[ ]*=\[?([^\n\]]+)/m;
  1042.     
  1043.     return $keywords;
  1044. }
  1045.  
  1046. sub FindMakevarsDomain
  1047. {
  1048.  
  1049.     my $domain = "";
  1050.     my $makevars_source; { 
  1051.     local (*IN);
  1052.     open (IN, "<Makevars") || return $domain;
  1053.     seek (IN, 0, 0);
  1054.     local $/; # slurp mode
  1055.     $makevars_source = <IN>;
  1056.     close IN;
  1057.     }
  1058.  
  1059.     $domain = $1 if $makevars_source =~ /^DOMAIN[ ]*=\[?([^\n\]\$]+)/m;
  1060.     $domain =~ s/^\s+//;
  1061.     $domain =~ s/\s+$//;
  1062.     
  1063.     return $domain;
  1064. }
  1065.